home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / tcp_ip / ka9q / kit_src / mk_news.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-03  |  978 b   |  38 lines

  1. /*    (C) Copyright 1991 Dave Fritsche (wb8zxu), All Rights Reserved.
  2.  * 
  3.  *    Redistribution and use in source and binary forms are permitted for
  4.  *    non-commercial use, provided that the above copyright notice and this
  5.  *    paragraph are duplicated in all such forms.  THIS SOFTWARE IS PROVIDED
  6.  *    ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  7.  *    WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND
  8.  *    FITNESS FOR A PARTICULAR PURPOSE.
  9.  */
  10. #include <stdio.h>
  11. #include "screen.h"
  12.  
  13. mk_news()
  14. {
  15.     FILE *fp;
  16.     unsigned char buf[128];
  17.  
  18.     printf("Netnews installation not yet supported, stay tuned!\n");
  19. /*    sprintf(buf, "%s\\netnews??", path);
  20.  *    if (debug)
  21.  *    {
  22.  *        printf("***> netnews file (%s):\n", buf);
  23.  *        fp = stdout;
  24.  *    }
  25.  *    else
  26.  *        if ( (aexec = fopen(buf, "w")) == NULL )
  27.  *        {
  28.  *            printf("\nCan't open \"%s\" for write, aborting!\n\n", buf);
  29.  *            exit(-1);
  30.  *        }
  31.  */
  32.  
  33.  
  34. /*    if (!debug)
  35.  *        fclose(fp);
  36.  */
  37. }
  38.